• Breaking Down Ignite: A Pragmatic Look at the Conference’s Best Innovations

    Updated: 2024-11-21 16:30:36
    The amount of news brought by Ignite is huge. I was not expecting to find so many new features, resources, and discoveries. There may be dozens of summaries of the conference, and each one focusing on different highlights and news. On this article I will summarize what seems to be the most groundbreaking changes but...… The post Breaking Down Ignite: A Pragmatic Look at the Conference’s Best Innovations appeared first on Simple Talk.

  • Convert Excel Workbooks to CSV with Microsoft Fabric

    Updated: 2024-11-20 05:00:00
    In this article, I explain how to convert a list of Excel files to CSV and move them to a separate folder with a Data Factory pipeline in Fabric's Data Lake.

  • Reading and Writing Parquet Files in SQL Server

    Updated: 2024-11-19 23:49:17
    When analytic data is stored directly in SQL Server, a clustered columnstore index is an ideal place for that data to reside. It is column-based, highly compressed, and supports a wide variety of optimizations for both reads and writes. When analytic data is stored in files, such as for use in Azure Data Factory, Synapse,...… The post Reading and Writing Parquet Files in SQL Server appeared first on Simple Talk.

  • Microservice Application with Azure Container Apps, Dapr and Bicep

    Updated: 2024-11-19 05:00:00
    Learn how to create a microservice application with Azure container apps and Dapr using Bicep to develop infrastructure code and deploy templates.

  • Aggregate Functions in Power BI including Running Total, Running Average and Max

    Updated: 2024-11-18 05:00:00
    This article explains how to aggregate data for Power BI reports and provides examples of running totals, running averages, min, max, and more.

  • MySQL vs PostgreSQL: Numeric Datatype Comparison

    Updated: 2024-11-15 21:09:49
    When you think of how to store data in a database, you think of data types. A data type represents a method of how some bit of data is stored internally. Whether it’s numbers, text, dates, or even more complex structures like JSON or geometric shapes, there is an internal format and a method to...… The post MySQL vs PostgreSQL: Numeric Datatype Comparison appeared first on Simple Talk.

  • SQL Server Static Data Masking with DataVeil

    Updated: 2024-11-15 18:17:20
    Learn how to use production-like data for testing and development, but mask sensitive data quickly and efficiently with DataVeil.

  • SQL IS NULL and SQL IS NOT NULL Examples

    Updated: 2024-11-15 05:00:00
    This article looks at how to use SQL IS NULL and SQL IS NOT NULL operations in SQL Server along with use cases and working with NULL values.

  • Data Warehouse Considerations - SCD Type 2 vs Overwrite Dimension Tables

    Updated: 2024-11-14 05:00:00
    How we handle data warehousing updates to dimension tables is crucial and this article covers Slowly Changing Dimensions (SCD Type 2) versus overwriting tables.

  • Calculate a Moving Average with T-SQL Windowing Functions

    Updated: 2024-11-13 05:00:00
    Learn how to create a moving average in SQL Server using older and less performant T-SQL and a modern way using windowing functions.

  • Execute Stored Procedures in the Microsoft GraphQL API

    Updated: 2024-11-12 05:00:00
    This tip explores leveraging existing SQL Server stored procedures within the Microsoft GraphQL API.

  • Data Control Language (aka Security)

    Updated: 2024-11-12 03:07:38
    Like ancient Gaul, SQL is divided into three sub- languages. The DDL (Data Declaration Language) declares the data. This is where we find the data types, constraints, references and other structures that have to do with how the data stored . The DML (Data Manipulation Language) uses those declarations to change their contents or to...… The post Data Control Language (aka Security) appeared first on Simple Talk.

  • Build a Streaming Data Architecture with Apache Kafka and Zookeeper

    Updated: 2024-11-11 05:00:00
    In this article, we look at how to use Apache Kafka and Zookeeper to process and load streaming data.

  • Joe's Blog: Happy First Anniversary SQL Snippets!

    Updated: 2024-11-10 08:32:38
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home Blog A0 15 Minutes of Fame A0 Happy First Anniversary SQL Snippets A0 And Now for Something Completely Different A0 Google Street View A0 Getting IT Right A0 The Task Spiral A0 The Choice A0 It's Alive A0 Snippets in the Strangest Places A0 The Journey Begins A0 About the Author A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Joe's Blog Happy First Anniversary SQL Snippets 2007-11-18 Well , it's been exactly one year since SQL Snippets first appeared on the web as a prototype site containing 33 pages viewed by a handful of visitors in its

  • Columns to Rows: UNPIVOT (11g)

    Updated: 2024-11-10 08:32:37
    SQL Snippets "Columns to Rows" section has been expanded to include a topic on using Oracle 11g's new UNPIVOT clause, which makes all prior techniques for transforming columns into rows now obsolete....

  • Nulls: Nulls and Aggregate Functions

    Updated: 2024-11-10 08:32:37
    A new tutorial has been added to SQL Snippets which demonstrates how aggregate functions deal with null values. Techniques for generating results that ignore nulls and results that include nulls are highlighted....

  • Integer Series Generators: Multiple Integer Series

    Updated: 2024-11-10 08:32:37
    The SQL Snippets "Integer Series Generator" section has been expanded to include new topics covering techniques for generating multiple integer series in a single query. Unlike previous topics which only demonstrated queries that created a single integer series, like 1,2,3,4, the new topics show how a query can generate a series like 1,2 for one row and 1,2,3 for another row in the same query....

  • String to Rows: Hierarchical Methods

    Updated: 2024-11-10 08:32:37
    A new, hierarchical technique for converting strings to rows has been added to the SQL Techniques Tutorials - String to Rows tutorial in SQL Snippets....

  • Combine Multiple Columns Performance Comparison - SQL UNPIVOT, UNION ALL vs CROSS APPLY

    Updated: 2024-11-10 08:32:37
    In this article, we combine multiple columns from an SQL Server table into one column using three different methods to see the most efficient approach.

  • SQL Server Metadata for Stored Procedures, User-Defined Functions and Views

    Updated: 2024-11-10 08:32:36
    In this article, we look at using SQL Server metadata to better manage SQL code for things like stored procedures, user-defined functions, views, and more.

  • Power BI in One Hour

    Updated: 2024-11-10 08:32:36
    In this article, learn how to build a Power BI report from start to finish with a real-life example using COVID-related data.

  • Integer Series Generators: CONNECT BY LEVEL Method

    Updated: 2024-11-10 08:32:36
    This tutorial has been updated to include a discussion of how hierarchical queries that do not have a CONNECT BY condition with PRIOR behave. A sample query that uses "PRIOR DBMS_RANDOM.VALUE IS NOT NULL" to make the CONNECT BY LEVEL technique conform to documented requirements has also been added....

  • Predictive Analysis and Descriptive Analysis with Azure Stream Analytics, Machine Learning and Power BI

    Updated: 2024-11-10 08:32:36
    In this article, we look at how to build an Azure streaming data collection and analysis process to analyze and predict stock prices.

  • Query Microsoft Fabric GraphQL API from an External App

    Updated: 2024-11-10 08:32:36
    This tip covers executing a Microsoft Fabric query using GraphQL API from an external application, introducing opportunities for data sharing, and exposing data through custom code.

  • SQL Techniques Tutorials: Pattern Matching Over Rows

    Updated: 2024-11-10 08:32:36
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home SQL Techniques Pattern Matching Over Rows A0 String Aggregation A0 Finding Patterns using REGEXP Functions A0 Measures A0 Setup A0 Cleanup A0 A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Pattern Matching Over Rows This topic was inspired by Tom Kyte's So , in your opinion blog post about a new SQL feature Oracle is considering described at Pattern matching in sequences of rows I'll admit I've never tackled this kind of pattern matching before and I didn't understand the entire paper . It's a pretty dense read . From what I can tell though

  • SQL Server Reporting Services Security

    Updated: 2024-11-10 08:32:36
    This article examines SQL Server Reporting Services security and what you should know from the Configuration, Web Service, Folder, and Report Level.

  • What Job Seekers Should Know about AI and Virtual Recruiters

    Updated: 2024-11-10 08:32:36
    Learn some tips and tricks when working with AI/virtual recruiters during the recruitment process and things you should know.

  • Oracle 23c/23ai Database New Features

    Updated: 2024-11-10 08:32:36
    Oracle 23c is the latest Release of the Oracle Database. This is also a Long term release. It is also called Oracle 23ai given the focus on AI in it. Oracle has introduced a lot of new features in it. Here are the Top Features Augmenting a new generation of AI models Asking questions naturally … Oracle 23c/23ai Database New Features Read More » The post Oracle 23c/23ai Database New Features appeared first on Techgoeasy.

  • SQL Techniques Tutorials: Varying IN Lists

    Updated: 2024-11-10 08:32:36
    This new SQL Snippets tutorial explores different approaches for implementing varying IN lists, including ones that use LIKE, MODEL, and integer series generator logic. The solutions will be presented as SQL commands, but the logic can be easily implemented in PL/SQL functions if required. ...

  • Power BI Quick Reference Guide

    Updated: 2024-11-10 08:32:36
    Check out this structured reference guide to just about anything you want to know about Power BI and Power BI report development.

  • Text Cleaning and Preprocessing with Python for NLP Tasks

    Updated: 2024-11-10 08:32:36
    This tip introduces some basic text preprocessing and cleaning techniques with Python that can be used before feeding the data to a machine-learning model.

  • Oracle tkprof utility : How to generate and read

    Updated: 2024-11-10 08:32:35
    We saw how to enable trace in Oracle in an earlier post. The trace files obtained from the method are in raw  form which can be converted into a more readable format using the tkprof utility  in Oracle (Transient Kernel PROFile  utility) tkprof utility in Oracle The syntax is given below tkprofUsage: tkprof tracefile outputfile … Oracle tkprof utility : How to generate and read Read More » The post Oracle tkprof utility : How to generate and read appeared first on Techgoeasy.

  • Joe's Blog: And Now for Something Completely Different

    Updated: 2024-11-10 08:32:35
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home Blog A0 15 Minutes of Fame A0 Happy First Anniversary SQL Snippets A0 And Now for Something Completely Different A0 Google Street View A0 Getting IT Right A0 The Task Spiral A0 The Choice A0 It's Alive A0 Snippets in the Strangest Places A0 The Journey Begins A0 About the Author A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Joe's Blog And Now for Something Completely Different 2007-06-28 Every once in a while my non-programmer friends give me feedback about my site like the blog posts are good , but when it comes to all that SQL stuff ,

  • What is Change Management and the SQL Server DBAs Role

    Updated: 2024-11-10 08:32:35
    This article will explain Change Management, how DBAs are involved and can benefit from implementing standard processes for all database changes.

  • Auto Generate SQL Variable Syntax for Table Column Names

    Updated: 2024-11-10 08:32:35
    Check out this SQL Server stored procedure and function to auto-generate SQL variable coding syntax for many different programming languages.

  • Easy and Cost Effective way to Encrypt Every SQL Server Database

    Updated: 2024-11-10 08:32:35
    Learn why Becton Dickinson has selected DBDefence to protect their SQL Server data across numerous medical devices in a cost effective manner.

  • Joe's Blog: Google Street View

    Updated: 2024-11-10 08:32:35
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home Blog A0 15 Minutes of Fame A0 Happy First Anniversary SQL Snippets A0 And Now for Something Completely Different A0 Google Street View A0 Getting IT Right A0 The Task Spiral A0 The Choice A0 It's Alive A0 Snippets in the Strangest Places A0 The Journey Begins A0 About the Author A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Joe's Blog Google Street View 2007-06-08 Here's something cool . A new Google Maps feature called Street View is available for some streets . With it you can virtually walk down a road seeing actual street level

  • Implement Azure Database for MySQL Step-by-Step

    Updated: 2024-11-10 08:32:35
    Learn how to implement MySQL on the Azure platform in this step-by-step article using an Azure Database for MySQL flexible server deployment.

  • Power BI Export to Excel

    Updated: 2024-11-10 08:32:35
    Learn how you can export millions of rows of data out of Power BI to either a CSV or Excel file.

  • Uncover SQL Server Missing Indexes

    Updated: 2024-11-10 08:32:35
    In this article, we look at a SQL Server Dynamic Management View (DMV) that helps find queries that trigger missing index recommendations.

  • Working with XML data in SQL Server

    Updated: 2024-11-10 08:32:35
    Working with XML and T-SQL could be a challenge if you do not know how to access the XML data. In this article, we look at what you need to know to work with XML data in SQL Server.

  • API for GraphQL in Microsoft Fabric

    Updated: 2024-11-10 08:32:35
    Learn how to share data currently stored in a Microsoft Fabric warehouse using a GraphQL API along with the steps to set this up.

  • Azure Managed Instance Download and Restore SQL Server Backup

    Updated: 2024-11-10 08:32:35
    Create an SQL Server backup for an Azure Managed Instance that you can download and restore on another SQL Server instance.

  • Change Advisory Boards (CAB) for Change Management

    Updated: 2024-10-25 05:00:00
    Learn about the purpose of Change Advisory Boards (CAB) to support a Change Management team by advising on requested IT changes.

Previous Months Items

Oct 2024 | Sep 2024 | Aug 2024 | Jul 2024 | Jun 2024 | May 2024